home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Utilities / BlacksEditor / Rexx / RemoveFormFeed.bed < prev    next >
Text File  |  1997-11-25  |  337b  |  28 lines

  1. /*
  2. ** $VER: RemoveFormFeed.bed 1.0 (18.6.95)
  3. **
  4. ** Remove all FormFeed from the document
  5. **
  6. ** Written by Mauro Fontana
  7. ** Modified by Marco Negri
  8. */
  9.  
  10. OPTIONS RESULTS
  11.  
  12. SetDisplayLock ON
  13. MoveSOF
  14.  
  15. SetStatusBar "Working..."
  16.  
  17. RecordMacro QUIET
  18. Find " "
  19. InsertLine
  20. Delete
  21. EndMacro
  22.  
  23. PlayMacro 0
  24.  
  25. MoveSOF
  26. SetDisplayLock OFF
  27. SetStatusBar "Done"
  28.